aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/app/dashboard/lists/[slug].tsx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/app/dashboard/lists/[slug].tsx')
-rw-r--r--apps/mobile/app/dashboard/lists/[slug].tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/mobile/app/dashboard/lists/[slug].tsx b/apps/mobile/app/dashboard/lists/[slug].tsx
index 0d1c01dc..8596b49f 100644
--- a/apps/mobile/app/dashboard/lists/[slug].tsx
+++ b/apps/mobile/app/dashboard/lists/[slug].tsx
@@ -24,8 +24,10 @@ export default function ListView() {
{list ? (
<View>
<BookmarkList
- archived={false}
- ids={list.bookmarks}
+ query={{
+ archived: false,
+ listId: list.id,
+ }}
header={<PageTitle title={`${list.icon} ${list.name}`} />}
/>
</View>